home *** CD-ROM | disk | FTP | other *** search
/ Beginning Mac Programming / Beginning Mac Programming.bin / Open Me for REALbasic 3 / REALbasic 3.2 / Example Projects / Techniques / Examples by Joe Strout / Blasteroids / Blasteroids READ ME < prev    next >
Text File  |  2001-01-25  |  1KB  |  31 lines

  1. Blasteroids
  2. ===========
  3.  
  4. This is a REALbasic sprite demo.  It makes the beginnings of an Asteroids-style game.  It illustrates using a scrolling SpriteSurface with a large virtual world (100x100 tiles, which is 6400x6400 pixels).
  5.  
  6. Functionality:
  7. You can fly around.  That's pretty much it -- no shooting or collisions yet.  Press the Escape key to exit.
  8.  
  9. Compatibility:
  10. This code has been tested with REALbasic 3.0.  It will not work correctly with earlier versions of REALbasic due to changes in the SpriteSurface class.
  11.  
  12. About the Sprites:
  13. The sprites in this demo were modeled in 3D using Meshwork [1], then ray-traced using POV-Ray [2].  See [3] for details on this process.  The source files are included in the "graphics work" folder.
  14.  
  15. Why Eggs? ...I got tired of rocks.
  16.  
  17. Updates:
  18. 23 Mar 2000: updated to use new world coordinate system of 2.1a29.
  19. 25 Jan 2001: updated to use new SpriteSurface features of RB 3.0.
  20.  
  21.  
  22. For more information:
  23. See my REALbasic code page [4].  Or write to me (Joe Strout) at <joe@strout.net>.
  24.  
  25.  
  26. ---
  27. [1] http://codenautics.com/meshwork
  28. [2] http://mac.povray.org/
  29. [3] http://codenautics.com/meshwork/sprites.html
  30. [4] http://strout.net/info/coding/rb/
  31.